runtime.gcWork.heapScanWork (field)

22 uses

	runtime (current package)
		mgcmark.go#L1046: 	initScanWork := gcw.heapScanWork
		mgcmark.go#L1108: 		if gcw.heapScanWork >= gcCreditSlack {
		mgcmark.go#L1109: 			gcController.heapScanWork.Add(gcw.heapScanWork)
		mgcmark.go#L1111: 				gcFlushBgCredit(gcw.heapScanWork - initScanWork)
		mgcmark.go#L1114: 			checkWork -= gcw.heapScanWork
		mgcmark.go#L1115: 			gcw.heapScanWork = 0
		mgcmark.go#L1128: 	if gcw.heapScanWork > 0 {
		mgcmark.go#L1129: 		gcController.heapScanWork.Add(gcw.heapScanWork)
		mgcmark.go#L1131: 			gcFlushBgCredit(gcw.heapScanWork - initScanWork)
		mgcmark.go#L1133: 		gcw.heapScanWork = 0
		mgcmark.go#L1157: 	workFlushed := -gcw.heapScanWork
		mgcmark.go#L1162: 	for !gp.preempt && !gcCPULimiter.limiting() && workFlushed+gcw.heapScanWork < scanWork {
		mgcmark.go#L1195: 		if gcw.heapScanWork >= gcCreditSlack {
		mgcmark.go#L1196: 			gcController.heapScanWork.Add(gcw.heapScanWork)
		mgcmark.go#L1197: 			workFlushed += gcw.heapScanWork
		mgcmark.go#L1198: 			gcw.heapScanWork = 0
		mgcmark.go#L1206: 	return workFlushed + gcw.heapScanWork
		mgcmark.go#L1341: 	gcw.heapScanWork += int64(scanSize)
		mgcwork.go#L84: 	heapScanWork int64
		mgcwork.go#L278: 	if w.heapScanWork != 0 {
		mgcwork.go#L279: 		gcController.heapScanWork.Add(w.heapScanWork)
		mgcwork.go#L280: 		w.heapScanWork = 0